home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_10 / 1010020b < prev    next >
Encoding:
Text File  |  1995-11-01  |  227 b   |  16 lines

  1.  
  2. Listing 9 -- the file strlen.c
  3.  
  4. /* strlen function */
  5. #include <string.h>
  6.  
  7. size_t (strlen)(const char *s)
  8.     {    /* find length of s[] */
  9.     const char *sc;
  10.  
  11.     for (sc = s; *sc != '\0'; ++sc)
  12.         ;
  13.     return (sc - s);
  14.     }
  15.  
  16.